home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / reply1.zip / REPLYDEM.BAT < prev   
DOS Batch File  |  1988-07-28  |  676b  |  18 lines

  1. echo off
  2. echo ************************************************************
  3. echo * ARE YOU IMPRESSED?       (10 seconds to decide)          *
  4. echo *                                                          *
  5. echo * Chooses:  Y(yes) / N(no)  or TIMEOUT @ End Of 10 Seconds *
  6. echo ************************************************************
  7. reply1 yn
  8. if errorlevel 2 goto Level2
  9. if errorlevel 1 goto Level1
  10. echo this is DEFAULT option .. Errorlevel 0 .. can't make up your mind, eh?
  11. goto EXIT
  12. :Level2
  13. echo Errorlevel was 2, you selected "n", and you're NOT impressed!
  14. goto EXIT
  15. :Level1
  16. echo Errorlevel was 1, you selected "y", and you're VERY impressed!
  17. :EXIT
  18.